home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / conf.d / rc < prev    next >
Text File  |  2006-04-25  |  4KB  |  150 lines

  1. # /etc/conf.d/rc: Global config file for the Gentoo RC System
  2.  
  3. # This is the number of tty's used in most of the rc-scripts (like
  4. # consolefont, numlock, etc ...)
  5.  
  6. RC_TTY_NUMBER=11
  7.  
  8. # Set to "yes" if you want the rc system to try and start services
  9. # in parallel for a slight speed improvement.
  10.  
  11. RC_PARALLEL_STARTUP="no"
  12.  
  13. # RC_NET_STRICT_CHECKING allows some flexibility with the 'net' service.
  14. # The following values are allowed:
  15. #  none  - The 'net' service is always considered up.
  16. #  no    - This basically means that at least one net.* service besides net.lo
  17. #          must be up.  This can be used by notebook users that have a wifi and
  18. #          a static nic, and only wants one up at any given time to have the
  19. #          'net' service seen as up.
  20. #  lo    - This is the same as the 'no' option, but net.lo is also counted.
  21. #          This should be useful to people that do not care about any specific
  22. #          interface being up at boot.
  23. #  yes   - For this ALL network interfaces MUST be up for the 'net' service to
  24. #          be considered up.
  25.  
  26. RC_NET_STRICT_CHECKING="no"
  27.  
  28. # RC_VOLUME_ORDER allows you to specify, or even remove the volume setup
  29. # for various volume managers (MD, EVMS2, LVM, DM, etc).  Note that they are
  30. # stopped in reverse order.
  31.  
  32. RC_VOLUME_ORDER="raid evms lvm dm"
  33.  
  34. # RC_BOOTLOG will generate a log of the boot messages shown on the console.  
  35. # Useful for headless machines or debugging.  You need to emerge the 
  36. # app-admin/showconsole package for this to work.  Note that this probably
  37. # won't work correctly with boot splash.
  38.  
  39. RC_BOOTLOG="no"
  40.  
  41. # RC_USE_FSTAB allows you to override the default mount options for the 
  42. # standard /proc, /sys, /dev, and /dev/pts mount points.  Note that this 
  43. # is the new way for selecting ramfs/tmpfs/etc... for udev mounting.
  44.  
  45. RC_USE_FSTAB="no"
  46.  
  47. # RC_USE_CONFIG_PROFILE allows you to have different /etc/conf.d files
  48. # based on your runlevel - if a conf.d file for your profile does not exist
  49. # then we try and use the default one.
  50. # To enable runlevel selection at boot, append "softlevel=foobar" to your
  51. # kernel line to change to the foobar runlevel. Or "rc foobar" at the command
  52. # prompt.
  53.  
  54. RC_USE_CONFIG_PROFILE="yes"
  55.  
  56. # RC_FORCE_AUTO tries its best to prevent user interaction during the boot and 
  57. # shutdown process.  For example, fsck will automatically be run or volumes 
  58. # remounted to create proper directory trees.  This feature can be dangerous 
  59. # and is meant ONLY for headless machines where getting a physical console 
  60. # hooked up is a huge pita.
  61.  
  62. RC_FORCE_AUTO="no"
  63.  
  64. # Use this variable to control the /dev management behavior.
  65. #  auto   - let the scripts figure out what's best at boot
  66. #  devfs  - use devfs (requires sys-fs/devfsd)
  67. #  udev   - use udev (requires sys-fs/udev)
  68. #  static - let the user manage /dev
  69.  
  70. RC_DEVICES="auto"
  71.  
  72. # UDEV OPTION:
  73. # Set to "yes" if you want to save /dev to a tarball on shutdown
  74. # and restore it on startup.  This is useful if you have a lot of
  75. # custom device nodes that udev does not handle/know about.
  76.  
  77. RC_DEVICE_TARBALL="yes"
  78.  
  79.  
  80.  
  81.  
  82.  
  83. #
  84. # Controlling start-stop-daemon behavior
  85. #
  86. # NOTE: most of these are not in use yet!!
  87. #
  88.  
  89. # Set to "yes" if stop-daemon() should always retry killing the
  90. # service if it fails the first time.
  91.  
  92. RC_RETRY_KILL="yes"
  93.  
  94.  
  95. # Set the amount of seconds stop-daemon() should wait between
  96. # retries.  $RC_RETRY_KILL should be set to "yes".
  97.  
  98. RC_RETRY_TIMEOUT=1
  99.  
  100.  
  101. # Set the amount of times stop-daemon() should try to kill
  102. # a service before giving up.  $RC_RETRY_KILL should be set to "yes".
  103.  
  104. RC_RETRY_COUNT=5
  105.  
  106.  
  107. # Set to "yes" if stop-daemon() should fail if the service
  108. # is marked as started, but not actually running on stop.
  109.  
  110. RC_FAIL_ON_ZOMBIE="no"
  111.  
  112.  
  113.  
  114.  
  115.  
  116. #
  117. # Internal configuration variables
  118. #
  119. # NB:  These are for advanced users, and you should really
  120. #      know what you are doing before changing them!
  121. #
  122.  
  123.  
  124. # rc-scripts dep-cache directory
  125. #
  126. # NOTE:  Do not remove the next line, as its needed by the baselayout ebuild!
  127. #
  128. #  svcdir="/var/lib/init.d"
  129.  
  130. svcdir="/var/lib/init.d"
  131.  
  132.  
  133. # Should we mount $svcdir in a ram disk for some speed increase 
  134. # for slower machines, or for the more extreme setups ?
  135.  
  136. svcmount="no"
  137.  
  138.  
  139. # FS type that should be used for $svcdir.  Note that you need 
  140. # $svcmount above set to "yes" for this to work ...  Currently 
  141. # tmpfs, ramfs, and ramdisk are supported (tmpfs is the default).
  142.  
  143. svcfstype="tmpfs"
  144.  
  145.  
  146. # Size of $svcdir in KB.  Note that ramfs doesn't support this 
  147. # due to kernel limitations.
  148.  
  149. svcsize=2048
  150.